home *** CD-ROM | disk | FTP | other *** search
/ Canon Creative 3 / Canon Creative 3.iso / webrec / MAINMENU.DIR / 00094.ls < prev    next >
Encoding:
Text File  |  1996-12-10  |  1.5 KB  |  72 lines

  1. on startMovie
  2.   global TheSprite, itemDel, Status, ToGo, PrevMovie
  3.   if (PrevMovie <> "body") or (PrevMovie <> "power") then
  4.     set PrevMovie to "body"
  5.   end if
  6.   set CurrSound to EMPTY
  7.   set TheSprite to 1
  8.   set the volume of sprite 2 to 255
  9.   set the volume of sprite 1 to 255
  10.   set Status to []
  11.   if the machineType = 256 then
  12.     set itemDel to "\"
  13.   else
  14.     set itemDel to ":"
  15.   end if
  16.   set the itemDelimiter to ","
  17.   set ToGo to "open"
  18. end
  19.  
  20. on rollOvers
  21.   global TheSprite
  22.   if rollOver(12) then
  23.     set TheSprite to 4
  24.     go("internet")
  25.   end if
  26.   if rollOver(13) then
  27.     set TheSprite to 5
  28.     go("features")
  29.   end if
  30.   if rollOver(14) then
  31.     set TheSprite to 6
  32.     go("fulltour")
  33.   end if
  34.   if rollOver(15) then
  35.     set TheSprite to 7
  36.     go("using")
  37.   end if
  38. end
  39.  
  40. on changeCast theRoll, TheSprite
  41.   if not (the name of cast the castNum of sprite TheSprite contains "down") then
  42.     set the castNum of sprite TheSprite to the castNum of sprite TheSprite - 1
  43.     updateStage()
  44.     repeat while (the mouseCast = (theRoll - 1)) and not (the mouseDown)
  45.     end repeat
  46.     set the castNum of sprite TheSprite to the castNum of sprite TheSprite + 1
  47.   end if
  48. end
  49.  
  50. on disposeRearWindow
  51.   global rwObj
  52.   if the machineType <> 256 then
  53.     if objectp(rwObj) then
  54.       rwObj(mdispose)
  55.     end if
  56.   end if
  57. end
  58.  
  59. on stopMovie
  60.   puppetSound(0)
  61.   puppetSound(2, 0)
  62.   sound stop 1
  63.   sound stop 2
  64.   sound stop 3
  65.   sound stop 4
  66.   puppetSound(0)
  67.   puppetSound(2, 0)
  68.   unLoadCast(114)
  69.   updateStage()
  70.   updateStage()
  71. end
  72.